home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / truncate.c < prev    next >
C/C++ Source or Header  |  1991-09-13  |  1KB  |  53 lines

  1. /* 
  2.  * truncate.c --
  3.  *
  4.  *    Procedure to map from Unix truncate system call to Sprite system call.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/truncate.c,v 1.3 91/09/12 23:38:50 mottsmth Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15.  
  16. #include "compatInt.h"
  17. #include <errno.h>
  18.  
  19.  
  20. /*
  21.  *----------------------------------------------------------------------
  22.  *
  23.  * truncate --
  24.  *
  25.  *    Procedure to map from Unix truncate system call to Sprite 
  26.  *    system call.
  27.  *
  28.  * Results:
  29.  *    UNIX_SUCCESS is returned, or
  30.  *      UNIX_ERROR with errno set appropriately.
  31.  *
  32.  * Side effects:
  33.  *    None.
  34.  *
  35.  *----------------------------------------------------------------------
  36.  */
  37.  
  38. int
  39. truncate(path, length)
  40.     char *path;
  41.     unsigned long length;
  42. {
  43.     ReturnStatus status = SUCCESS;
  44.  
  45.     status = Fs_Truncate(path, (int) length);
  46.     if (status == SUCCESS) {
  47.     return(UNIX_SUCCESS);
  48.     } else {
  49.     errno = Compat_MapCode(status);
  50.     return(UNIX_ERROR);
  51.     }
  52. }
  53.